OpenBuildings GenerativeComponents Help

Print

Print the values of one or more expressions to the script console pane.

void Print(...)

If a print file has been opened, additionally writes those values to the print file.

For instance:

Print(point01.X);

It is possible to concatenate strings with values to be printed as one string.

Print("The X value of point01 is " + point01.X + ".");